lasp/cmake/OSSpecific.cmake

12 lines
286 B
CMake
Raw Normal View History

2022-07-20 12:58:48 +00:00
if(WIN32)
set(home $ENV{USERPROFILE})
# set(miniconda_dir ${home}\\Miniconda3)
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
message("Building for Linux :)")
set(TARGET_OS_LINKLIBS "")
2022-07-20 12:58:48 +00:00
endif()