2022-07-20 12:58:48 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(home $ENV{USERPROFILE})
|
|
|
|
# set(miniconda_dir ${home}\\Miniconda3)
|
2023-06-17 14:03:14 +00:00
|
|
|
set(TARGET_OS_LINKLIBS winmm dsound setupapi ole32 uuid winmm)
|
|
|
|
|
2022-07-20 12:58:48 +00:00
|
|
|
message("Building for Windows")
|
|
|
|
else() # Linux compile
|
2023-05-12 13:41:16 +00:00
|
|
|
message("Building for Linux :)")
|
2023-06-17 14:03:14 +00:00
|
|
|
set(TARGET_OS_LINKLIBS "")
|
2022-07-20 12:58:48 +00:00
|
|
|
endif()
|
2023-04-19 19:36:32 +00:00
|
|
|
|